home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-268.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  72 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12418);
  11.  script_version ("$Revision: 1.3 $");
  12.  
  13.  name["english"] = "RHSA-2003-268: up";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = '
  18.  
  19.   New versions of the up2date and rhn_register clients are available and
  20.   are required for continued access to Red Hat Network.
  21.  
  22.   The rhn_register and up2date packages contain the software necessary to
  23.   take advantage of Red Hat Network functionality.
  24.  
  25.   This erratum includes an updated RHNS-CA-CERT file, which contains a new CA
  26.   certificate. This new certificate is needed so that up2date can continue
  27.   to communicate with Red Hat Network after 28 August 2003. Without this
  28.   updated certificate, users will see SSL Connection Errors reported by
  29.   up2date or rhn_register.
  30.  
  31.   All users must upgrade to these erratum packages in order to continue to
  32.   use Red Hat Network. This includes both interactive use of up2date, as
  33.   well as actions scheduled by the RHN website.
  34.  
  35.  
  36.  
  37.  
  38. Solution : http://rhn.redhat.com/errata/RHSA-2003-268.html
  39. Risk factor : High';
  40.  
  41.  script_description(english:desc["english"]);
  42.  
  43.  summary["english"] = "Check for the version of the up packages";
  44.  script_summary(english:summary["english"]);
  45.  
  46.  script_category(ACT_GATHER_INFO);
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  49.  family["english"] = "Red Hat Local Security Checks";
  50.  script_family(english:family["english"]);
  51.  
  52.  script_dependencies("ssh_get_info.nasl");
  53.  
  54.  script_require_keys("Host/RedHat/rpm-list");
  55.  exit(0);
  56. }
  57.  
  58. include("rpm.inc");
  59. if ( rpm_check( reference:"up2date-2.8.46.3-1.2.1AS", release:"RHEL2.1") )
  60. {
  61.  security_hole(0);
  62.  exit(0);
  63. }
  64. if ( rpm_check( reference:"up2date-gnome-2.8.46.3-1.2.1AS", release:"RHEL2.1") )
  65. {
  66.  security_hole(0);
  67.  exit(0);
  68. }
  69.  
  70.  
  71. set_kb_item(name:"RHSA-2003-268", value:TRUE);
  72.